62b5340709d3071fcdc452c552d19fbf4cfabcb6,src/org/exmaralda/partitureditor/partiture/PartitureTableWithActions.java,PartitureTableWithActions,initDialogs,#,304

Before Change


        multimodalDialog.setLocationRelativeTo(this);

        svgDialog = new org.exmaralda.partitureditor.svgPanel.SVGDialog(parent, false);
        svgDialog.setLocationRelativeTo(this);
        svgDialog.svgPanel.addXPointerListener(this);
        
        

After Change


            multimodalDialog.setLocationRelativeTo(this);
        }

        if (parent instanceof PartiturEditor){
            svgDialog = new org.exmaralda.partitureditor.svgPanel.SVGDialog(parent, false);
            svgDialog.setLocationRelativeTo(this);
            svgDialog.svgPanel.addXPointerListener(this);
        }